home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000290_news@newsmaster….columbia.edu _Wed Sep 3 19:18:25 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id TAA29783
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 3 Sep 1997 19:18:24 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id TAA01775
  7.     for kermit.misc@watsun; Wed, 3 Sep 1997 19:18:23 -0400 (EDT)
  8. Path: news.columbia.edu!panix!logbridge.uoregon.edu!europa.clark.net!4.1.16.34!cpk-news-hub1.bbnplanet.com!news.bbnplanet.com!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  9. From: jrd@cc.usu.edu (Joe Doupnik)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: MSKermit 3.14 problem
  12. Message-ID: <DdRi9ZsOl67n@cc.usu.edu>
  13. Date: 3 Sep 97 14:26:52 MDT
  14. References: <01bcb7cc$b2b132e0$LocalHost@ivan> <5uk51l$lq3$1@apakabar.cc.columbia.edu>
  15. Organization: Utah State University
  16. Lines: 35
  17. Xref: news.columbia.edu comp.protocols.kermit.misc:7610
  18.  
  19. In article <5uk51l$lq3$1@apakabar.cc.columbia.edu>, fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  20. > In article <EFwrDC.Mt5@freenet.buffalo.edu>,
  21. > L. Chen <am302@freenet.buffalo.edu> wrote:
  22. > : On 2 Sep 1997, Frank da Cruz wrote:
  23. > : > Then read the NETWORKS\SETUP.DOC file.  It explains everything you need to
  24. > : > do to set up MS-DOS Kermit to make TCP/IP connections.
  25. > : 
  26. > : Can 3.14 make tcp/ip connections in Win95 ?
  27. > : 
  28. > MS-DOS 3.14 is not, and can not be, a Winsock client.  The only way it could
  29. > make TCP/IP connections is through its own built-in TCP/IP stack or through
  30. > its BIOS interface.  Setting this up is not for the feint of heart, and in
  31. > any case is not recommended or supported.
  32. > - Frank
  33. --------
  34.     Amplifying this a bit because my place does use MSK heavily in
  35. Win95...
  36.     MSK is a DOS program, a real mode affair, not a Windows-only item.
  37. It can use its internal TCP/IP stack to a Packet Driver or a real-mode
  38. Novell ODI driver. It does not communicate directly with protected mode
  39. lan drivers nor directly with NDIS of any flavor.
  40.     What we do is use Novell's real mode ODI material (lan driver, and
  41. VLMs). To operate MSK this way within a Windows DOS box one needs shim WINPKT,
  42. and that in turn needs a Packet Driver beneath it. ODIPKT is that PD beneath
  43. it. Thus the drill is to load ODI components as usual, load ODIPKT, load
  44. WINPKT, start Windows.
  45.     There is a rule of only one TCP/IP stack using a lan adapter at the 
  46. same time. Thus you can't add MS' TCP/IP stack and winsock at the same time 
  47. as MSK is using its own TCP/IP stack. You can use Novell's real mode TCP/IP
  48. stack and its matching winsock, but not at the same time as MSK is running.
  49. We load Novell's stack when needed, and unload it when not needed. The
  50. winsock interface provided is the 16-bit variety.
  51.     These items are discussed in the MSK release documentation.
  52.     Joe D.